#category, #generateButton, #copyButton {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }

  #category option {
    background-color: white;
    color: #333;
  }

  #templatePreview, #generatedCode {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  #loadingSpinner {
    display: none;
    text-align: center;
    margin-top: 10px;
  }